home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / server_privileges.php < prev    next >
PHP Script  |  2005-04-09  |  101KB  |  1,574 lines

  1. <?php
  2. /* $Id: server_privileges.php,v 2.42.2.1 2005/04/10 12:29:48 lem9 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Does the common work
  7.  */
  8. $js_to_run = 'server_privileges.js';
  9. require('./server_common.inc.php');
  10.  
  11.  
  12. /**
  13.  * Checks if a dropdown box has been used for selecting a database / table
  14.  */
  15. if (!empty($pred_dbname)) {
  16.     $dbname = $pred_dbname;
  17.     unset($pred_dbname);
  18. }
  19. if (!empty($pred_tablename)) {
  20.     $tablename = $pred_tablename;
  21.     unset($pred_tablename);
  22. }
  23.  
  24.  
  25. /**
  26.  * Checks if the user is allowed to do what he tries to...
  27.  */
  28. if (!$is_superuser) {
  29.     require('./server_links.inc.php');
  30.     echo '<h2>' . "\n"
  31.        . '    ' . ($GLOBALS['cfg']['MainPageIconic'] ? '<img src="'. $GLOBALS['pmaThemeImage'] . 'b_usrlist.png" border="0" hspace="2" align="middle" />' : '')
  32.        . '    ' . $strPrivileges . "\n"
  33.        . '</h2>' . "\n"
  34.        . $strNoPrivileges . "\n";
  35.     require_once('./footer.inc.php');
  36. }
  37.  
  38.  
  39. /**
  40.  * Extracts the privilege information of a priv table row
  41.  *
  42.  * @param   array    the row
  43.  * @param   boolean  add <dfn> tag with tooltips
  44.  *
  45.  * @global  ressource  the database connection
  46.  *
  47.  * @return  array
  48.  */
  49. function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
  50. {
  51.     global $userlink;
  52.  
  53.     $grants = array(
  54.         array('Select_priv', 'SELECT', $GLOBALS['strPrivDescSelect']),
  55.         array('Insert_priv', 'INSERT', $GLOBALS['strPrivDescInsert']),
  56.         array('Update_priv', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
  57.         array('Delete_priv', 'DELETE', $GLOBALS['strPrivDescDelete']),
  58.         array('Create_priv', 'CREATE', $GLOBALS['strPrivDescCreateDb']),
  59.         array('Drop_priv', 'DROP', $GLOBALS['strPrivDescDropDb']),
  60.         array('Reload_priv', 'RELOAD', $GLOBALS['strPrivDescReload']),
  61.         array('Shutdown_priv', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']),
  62.         array('Process_priv', 'PROCESS', $GLOBALS['strPrivDescProcess' . ((!empty($row) && isset($row['Super_priv'])) || (empty($row) && isset($GLOBALS['Super_priv'])) ? '4' : '3')]),
  63.         array('File_priv', 'FILE', $GLOBALS['strPrivDescFile']),
  64.         array('References_priv', 'REFERENCES', $GLOBALS['strPrivDescReferences']),
  65.         array('Index_priv', 'INDEX', $GLOBALS['strPrivDescIndex']),
  66.         array('Alter_priv', 'ALTER', $GLOBALS['strPrivDescAlter']),
  67.         array('Show_db_priv', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']),
  68.         array('Super_priv', 'SUPER', $GLOBALS['strPrivDescSuper']),
  69.         array('Create_tmp_table_priv', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']),
  70.         array('Lock_tables_priv', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']),
  71.         array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute']),
  72.         array('Repl_slave_priv', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']),
  73.         array('Repl_client_priv', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient'])
  74.     );
  75.     if (!empty($row) && isset($row['Table_priv'])) {
  76.         $res = PMA_DBI_query('SHOW COLUMNS FROM `tables_priv` LIKE \'Table_priv\';', $userlink);
  77.         $row1 = PMA_DBI_fetch_assoc($res);
  78.         PMA_DBI_free_result($res);
  79.         $av_grants = explode ('\',\'' , substr($row1['Type'], 5, strlen($row1['Type']) - 7));
  80.         unset($row1);
  81.         $users_grants = explode(',', $row['Table_priv']);
  82.         foreach ($av_grants as $current_grant) {
  83.             $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
  84.         }
  85.         unset($current_grant);
  86.         unset($av_grants);
  87.         unset($users_grants);
  88.     }
  89.     $privs = array();
  90.     $allPrivileges = TRUE;
  91.     foreach ($grants as $current_grant) {
  92.         if ((!empty($row) && isset($row[$current_grant[0]])) || (empty($row) && isset($GLOBALS[$current_grant[0]]))) {
  93.             if ((!empty($row) && $row[$current_grant[0]] == 'Y') || (empty($row) && ($GLOBALS[$current_grant[0]] == 'Y' || (is_array($GLOBALS[$current_grant[0]]) && count($GLOBALS[$current_grant[0]]) == $GLOBALS['column_count'] && empty($GLOBALS[$current_grant[0] . '_none']))))) {
  94.                 if ($enableHTML) {
  95.                     $privs[] = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', ' ', $current_grant[1]) . '</dfn>';
  96.                 } else {
  97.                     $privs[] = $current_grant[1];
  98.                 }
  99.             } else if (!empty($GLOBALS[$current_grant[0]]) && is_array($GLOBALS[$current_grant[0]]) && empty($GLOBALS[$current_grant[0] . '_none'])) {
  100.                 if ($enableHTML) {
  101.                     $priv_string = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', ' ', $current_grant[1]) . '</dfn>';
  102.                 } else {
  103.                     $priv_string = $current_grant[1];
  104.                 }
  105.                 $privs[] = $priv_string . ' (`' . join('`, `', $GLOBALS[$current_grant[0]]) . '`)';
  106.             } else {
  107.                 $allPrivileges = FALSE;
  108.             }
  109.         }
  110.     }
  111.     if (empty($privs)) {
  112.         if ($enableHTML) {
  113.             $privs[] = '<dfn title="' . $GLOBALS['strPrivDescUsage'] . '">USAGE</dfn>';
  114.         } else {
  115.             $privs[] = 'USAGE';
  116.         }
  117.     } else if ($allPrivileges && (!isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
  118.         if ($enableHTML) {
  119.             $privs = array('<dfn title="' . $GLOBALS['strPrivDescAllPrivileges'] . '">ALL PRIVILEGES</dfn>');
  120.         } else {
  121.             $privs = array('ALL PRIVILEGES');
  122.         }
  123.     }
  124.     return $privs;
  125. } // end of the 'PMA_extractPrivInfo()' function
  126.  
  127. /**
  128.  * Displays the privileges form table
  129.  *
  130.  * @param   string     the database
  131.  * @param   string     the table
  132.  * @param   boolean    wheather to display the submit button or not
  133.  * @param   int        the indenting level of the code
  134.  *
  135.  * @global  array      the phpMyAdmin configuration
  136.  * @global  ressource  the database connection
  137.  *
  138.  * @return  void
  139.  */
  140. function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE, $indent = 0)
  141. {
  142.     global $cfg, $userlink, $url_query, $checkall;
  143.  
  144.     if ($db == '*') {
  145.         $table = '*';
  146.     }
  147.     $spaces = '';
  148.     for ($i = 0; $i < $indent; $i++) {
  149.         $spaces .= '    ';
  150.     }
  151.     if (isset($GLOBALS['username'])) {
  152.         $username = $GLOBALS['username'];
  153.         $hostname = $GLOBALS['hostname'];
  154.         if ($db == '*') {
  155.             $sql_query = 'SELECT * FROM `user` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted') . ';';
  156.         } else if ($table == '*') {
  157.             $sql_query = 'SELECT * FROM `db` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted') . ' AND ' .  PMA_convert_using('Db') . ' = ' . PMA_convert_using($db, 'quoted') . ';';
  158.         } else {
  159.             $sql_query = 'SELECT `Table_priv` FROM `tables_priv` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' .PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted')  . ' AND ' . PMA_convert_using('Db') . ' = ' . PMA_convert_using($db, 'quoted') . ' AND ' . PMA_convert_using('Table_name') . ' = ' . PMA_convert_using($table, 'quoted') . ';';
  160.         }
  161.         $res = PMA_DBI_query($sql_query);
  162.         $row = PMA_DBI_fetch_assoc($res);
  163.         PMA_DBI_free_result($res);
  164.     }
  165.     if (empty($row)) {
  166.         if ($table == '*') {
  167.             if ($db == '*') {
  168.                 $sql_query = 'SHOW COLUMNS FROM `mysql`.`user`;';
  169.             } else if ($table == '*') {
  170.                 $sql_query = 'SHOW COLUMNS FROM `mysql`.`db`;';
  171.             }
  172.             $res = PMA_DBI_query($sql_query);
  173.             while ($row1 = PMA_DBI_fetch_row($res)) {
  174.                 if (substr($row1[0], 0, 4) == 'max_') {
  175.                     $row[$row1[0]] = 0;
  176.                 } else {
  177.                     $row[$row1[0]] = 'N';
  178.                 }
  179.             }
  180.             PMA_DBI_free_result($res);
  181.         } else {
  182.             $row = array('Table_priv' => '');
  183.         }
  184.     }
  185.     if (isset($row['Table_priv'])) {
  186.         $res = PMA_DBI_query('SHOW COLUMNS FROM `tables_priv` LIKE \'Table_priv\';', $userlink);
  187.         $row1 = PMA_DBI_fetch_assoc($res);
  188.         PMA_DBI_free_result($res);
  189.         $av_grants = explode ('\',\'' , substr($row1['Type'], strpos($row1['Type'], '(') + 2, strpos($row1['Type'], ')') - strpos($row1['Type'], '(') - 3));
  190.         unset($res, $row1);
  191.         $users_grants = explode(',', $row['Table_priv']);
  192.         foreach ($av_grants as $current_grant) {
  193.             $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
  194.         }
  195.         unset($row['Table_priv'], $current_grant, $av_grants, $users_grants);
  196.         $res = PMA_DBI_try_query('SHOW COLUMNS FROM `' . $db . '`.`' . $table . '`;');
  197.         $columns = array();
  198.         if ($res) {
  199.             while ($row1 = PMA_DBI_fetch_row($res)) {
  200.                 $columns[$row1[0]] = array(
  201.                     'Select' => FALSE,
  202.                     'Insert' => FALSE,
  203.                     'Update' => FALSE,
  204.                     'References' => FALSE
  205.                 );
  206.             }
  207.             PMA_DBI_free_result($res);
  208.         }
  209.         unset($res, $row1);
  210.     }
  211.     if (!empty($columns)) {
  212.         $res = PMA_DBI_QUERY('SELECT `Column_name`, `Column_priv` FROM `columns_priv` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted') . ' AND ' . PMA_convert_using('Db') . ' = ' . PMA_convert_using($db, 'quoted') . ' AND ' . PMA_convert_using('Table_name') . ' = ' . PMA_convert_using($table, 'quoted') . ';');
  213.  
  214.         while ($row1 = PMA_DBI_fetch_row($res)) {
  215.             $row1[1] = explode(',', $row1[1]);
  216.             foreach ($row1[1] as $current) {
  217.                 $columns[$row1[0]][$current] = TRUE;
  218.             }
  219.         }
  220.         PMA_DBI_free_result($res);
  221.         unset($res);
  222.         unset($row1);
  223.         unset($current);
  224.         echo $spaces . '<input type="hidden" name="grant_count" value="' . count($row) . '" />' . "\n"
  225.            . $spaces . '<input type="hidden" name="column_count" value="' . count($columns) . '" />' . "\n"
  226.            . $spaces . '<table border="0" cellpadding="2" cellspacing="1">' . "\n"
  227.            . $spaces . '    <tr>' . "\n"
  228.            . $spaces . '        <th colspan="6"> ' . $GLOBALS['strTblPrivileges'] . ' </th>' . "\n"
  229.            . $spaces . '    </tr>' . "\n"
  230.            . $spaces . '    <tr>' . "\n"
  231.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="6"><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small></td>' . "\n"
  232.            . $spaces . '    </tr>' . "\n"
  233.            . $spaces . '    <tr>' . "\n"
  234.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '"> <tt><dfn title="' . $GLOBALS['strPrivDescSelect'] . '">SELECT</dfn></tt> </td>' . "\n"
  235.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '"> <tt><dfn title="' . $GLOBALS['strPrivDescInsert'] . '">INSERT</dfn></tt> </td>' . "\n"
  236.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '"> <tt><dfn title="' . $GLOBALS['strPrivDescUpdate'] . '">UPDATE</dfn></tt> </td>' . "\n"
  237.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '"> <tt><dfn title="' . $GLOBALS['strPrivDescReferences'] . '">REFERENCES</dfn></tt> </td>' . "\n";
  238.         list($current_grant, $current_grant_value) = each($row);
  239.         while (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
  240.             list($current_grant, $current_grant_value) = each($row);
  241.         }
  242.         echo $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
  243.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
  244.            . $spaces . '    </tr>' . "\n"
  245.            . $spaces . '    <tr>' . "\n";
  246.         $rowspan = count($row) - 5;
  247.         echo $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
  248.            . $spaces . '            <select name="Select_priv[]" multiple="multiple">' . "\n";
  249.         foreach ($columns as $current_column => $current_column_privileges) {
  250.             echo $spaces . '                <option value="' . htmlspecialchars($current_column) . '"';
  251.             if ($row['Select_priv'] == 'Y' || $current_column_privileges['Select']) {
  252.                 echo ' selected="selected"';
  253.             }
  254.             echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
  255.         }
  256.         echo $spaces . '            </select><br />' . "\n"
  257.            . $spaces . '            <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
  258.            . $spaces . '            <input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="Select_priv_none" id="checkbox_Select_priv_none" title="' . $GLOBALS['strNone'] . '" /><label for="checkbox_Select_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
  259.            . $spaces . '        </td>' . "\n"
  260.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
  261.            . $spaces . '            <select name="Insert_priv[]" multiple="multiple">' . "\n";
  262.         foreach ($columns as $current_column => $current_column_privileges) {
  263.             echo $spaces . '                <option value="' . htmlspecialchars($current_column) . '"';
  264.             if ($row['Insert_priv'] == 'Y' || $current_column_privileges['Insert']) {
  265.                 echo ' selected="selected"';
  266.             }
  267.             echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
  268.         }
  269.         echo $spaces . '            </select><br />' . "\n"
  270.            . $spaces . '            <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
  271.            . $spaces . '            <input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="Insert_priv_none" id="checkbox_Insert_priv_none" title="' . $GLOBALS['strNone'] . '" /><label for="checkbox_Insert_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
  272.            . $spaces . '        </td>' . "\n"
  273.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
  274.            . $spaces . '            <select name="Update_priv[]" multiple="multiple">' . "\n";
  275.         foreach ($columns as $current_column => $current_column_privileges) {
  276.             echo $spaces . '                <option value="' . htmlspecialchars($current_column) . '"';
  277.             if ($row['Update_priv'] == 'Y' || $current_column_privileges['Update']) {
  278.                 echo ' selected="selected"';
  279.             }
  280.             echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
  281.         }
  282.         echo $spaces . '            </select><br />' . "\n"
  283.            . $spaces . '            <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
  284.            . $spaces . '            <input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="Update_priv_none" id="checkbox_Update_priv_none" title="' . $GLOBALS['strNone'] . '" /><label for="checkbox_Update_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
  285.            . $spaces . '        </td>' . "\n"
  286.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
  287.            . $spaces . '            <select name="References_priv[]" multiple="multiple">' . "\n";
  288.         foreach ($columns as $current_column => $current_column_privileges) {
  289.             echo $spaces . '                <option value="' . htmlspecialchars($current_column) . '"';
  290.             if ($row['References_priv'] == 'Y' || $current_column_privileges['References']) {
  291.                 echo ' selected="selected"';
  292.             }
  293.             echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
  294.         }
  295.         echo $spaces . '            </select><br />' . "\n"
  296.            . $spaces . '            <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
  297.            . $spaces . '            <input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="References_priv_none" id="checkbox_References_priv_none" title="' . $GLOBALS['strNone'] . '" /><label for="checkbox_References_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
  298.            . $spaces . '        </td>' . "\n";
  299.         unset($rowspan);
  300.         list($current_grant, $current_grant_value) = each($row);
  301.         while (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
  302.             list($current_grant, $current_grant_value) = each($row);
  303.         }
  304.         echo $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
  305.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
  306.            . $spaces . '    </tr>' . "\n";
  307.         while (list($current_grant, $current_grant_value) = each($row)) {
  308.             if (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
  309.                 continue;
  310.             }
  311.             echo $spaces . '    <tr>' . "\n"
  312.                . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
  313.                . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
  314.                . $spaces . '    </tr>' . "\n";
  315.         }
  316.     } else {
  317.         $privTable[0] = array(
  318.             array('Select', 'SELECT', $GLOBALS['strPrivDescSelect']),
  319.             array('Insert', 'INSERT', $GLOBALS['strPrivDescInsert']),
  320.             array('Update', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
  321.             array('Delete', 'DELETE', $GLOBALS['strPrivDescDelete'])
  322.         );
  323.         if ($db == '*') {
  324.             $privTable[0][] = array('File', 'FILE', $GLOBALS['strPrivDescFile']);
  325.         }
  326.         $privTable[1] = array(
  327.             array('Create', 'CREATE', ($table == '*' ? $GLOBALS['strPrivDescCreateDb'] : $GLOBALS['strPrivDescCreateTbl'])),
  328.             array('Alter', 'ALTER', $GLOBALS['strPrivDescAlter']),
  329.             array('Index', 'INDEX', $GLOBALS['strPrivDescIndex']),
  330.             array('Drop', 'DROP', ($table == '*' ? $GLOBALS['strPrivDescDropDb'] : $GLOBALS['strPrivDescDropTbl']))
  331.         );
  332.         if (isset($row['Create_tmp_table_priv'])) {
  333.             $privTable[1][] = array('Create_tmp_table', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']);
  334.         }
  335.         $privTable[2] = array();
  336.         if (isset($row['Grant_priv'])) {
  337.             $privTable[2][] = array('Grant', 'GRANT', $GLOBALS['strPrivDescGrant']);
  338.         }
  339.         if ($db == '*') {
  340.             if (isset($row['Super_priv'])) {
  341.                 $privTable[2][] = array('Super', 'SUPER', $GLOBALS['strPrivDescSuper']);
  342.                 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess4']);
  343.             } else {
  344.                 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess3']);
  345.             }
  346.             $privTable[2][] = array('Reload', 'RELOAD', $GLOBALS['strPrivDescReload']);
  347.             $privTable[2][] = array('Shutdown', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']);
  348.             if (isset($row['Show_db_priv'])) {
  349.                 $privTable[2][] = array('Show_db', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']);
  350.             }
  351.         }
  352.         if (isset($row['Lock_tables_priv'])) {
  353.             $privTable[2][] = array('Lock_tables', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']);
  354.         }
  355.         $privTable[2][] = array('References', 'REFERENCES', $GLOBALS['strPrivDescReferences']);
  356.         if ($db == '*') {
  357.             if (isset($row['Execute_priv'])) {
  358.                 $privTable[2][] = array('Execute', 'EXECUTE', $GLOBALS['strPrivDescExecute']);
  359.             }
  360.             if (isset($row['Repl_client_priv'])) {
  361.                 $privTable[2][] = array('Repl_client', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient']);
  362.             }
  363.             if (isset($row['Repl_slave_priv'])) {
  364.                 $privTable[2][] = array('Repl_slave', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']);
  365.             }
  366.         }
  367.         echo $spaces . '<input type="hidden" name="grant_count" value="' . (count($privTable[0]) + count($privTable[1]) + count($privTable[2]) - (isset($row['Grant_priv']) ? 1 : 0)) . '" />' . "\n"
  368.            . $spaces . '<table border="0" cellpadding="2" cellspacing="1">' . "\n"
  369.            . $spaces . '    <tr>' . "\n"
  370.            . $spaces . '        <th colspan="6"> ' . ($db == '*' ? $GLOBALS['strGlobalPrivileges'] : ($table == '*' ? $GLOBALS['strDbPrivileges'] : $GLOBALS['strTblPrivileges'])) . ' </th>' . "\n"
  371.            . $spaces . '    </tr>' . "\n"
  372.            . $spaces . '    <tr>' . "\n"
  373.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" align="center" colspan="6"><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small><br />' . "\n"
  374.            . $spaces . '        <a href="./server_privileges.php?' . $url_query .  '&checkall=1" onclick="setCheckboxes(\'usersForm\', \'\', true); return false;">' . $GLOBALS['strCheckAll'] . '</a>' . "\n"
  375.            . $spaces . '           ' . "\n"
  376.            . $spaces . '        <a href="./server_privileges.php?' . $url_query .  '" onclick="setCheckboxes(\'usersForm\', \'\', false); return false;">' . $GLOBALS['strUncheckAll'] . '</a></td>' . "\n"
  377.            . $spaces . '    </tr>' . "\n"
  378.            . $spaces . '    <tr>' . "\n"
  379.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"> <b><i>' . $GLOBALS['strData'] . '</i></b> </td>' . "\n"
  380.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"> <b><i>' . $GLOBALS['strStructure'] . '</i></b> </td>' . "\n"
  381.            . $spaces . '        <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"> <b><i>' . $GLOBALS['strAdministration'] . '</i></b> </td>' . "\n"
  382.            . $spaces . '    </tr>' . "\n";
  383.         $limitTable = FALSE;
  384.         for ($i = 0; isset($privTable[0][$i]) || isset($privTable[1][$i]) || isset($privTable[2][$i]); $i++) {
  385.             echo $spaces . '    <tr>' . "\n";
  386.             for ($j = 0; $j < 3; $j++) {
  387.                 if (isset($privTable[$j][$i])) {
  388.                     echo $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox"' . (empty($checkall) ?  '' : ' checked="checked"') . ' name="' . $privTable[$j][$i][0] . '_priv" id="checkbox_' . $privTable[$j][$i][0] . '_priv" value="Y" ' . ($row[$privTable[$j][$i][0] . '_priv'] == 'Y' ? 'checked="checked" ' : '') . 'title="' . $privTable[$j][$i][2] . '"/></td>' . "\n"
  389.                        . $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $privTable[$j][$i][0] . '_priv"><tt><dfn title="' . $privTable[$j][$i][2] . '">' . $privTable[$j][$i][1] . '</dfn></tt></label></td>' . "\n";
  390.                 } else if ($db == '*' && !isset($privTable[0][$i]) && !isset($privTable[1][$i])
  391.                     && isset($row['max_questions']) && isset($row['max_updates']) && isset($row['max_connections'])
  392.                     && !$limitTable) {
  393.                     echo $spaces . '        <td colspan="4" rowspan="' . (count($privTable[2]) - $i) . '">' . "\n"
  394.                        . $spaces . '            <table border="0" cellpadding="0" cellspacing="0">' . "\n"
  395.                        . $spaces . '                <tr>' . "\n"
  396.                        . $spaces . '                    <th colspan="2"> ' . $GLOBALS['strResourceLimits'] . ' </th>' . "\n"
  397.                        . $spaces . '                </tr>' . "\n"
  398.                        . $spaces . '                <tr>' . "\n"
  399.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2"><small><i>' . $GLOBALS['strZeroRemovesTheLimit'] . '</i></small></td>' . "\n"
  400.                        . $spaces . '                </tr>' . "\n"
  401.                        . $spaces . '                <tr>' . "\n"
  402.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_questions"><tt><dfn title="' . $GLOBALS['strPrivDescMaxQuestions'] . '">MAX QUERIES PER HOUR</dfn></tt></label></td>' . "\n"
  403.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" class="textfield" name="max_questions" id="text_max_questions" value="' . $row['max_questions'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxQuestions'] . '" /></td>' . "\n"
  404.                        . $spaces . '                </tr>' . "\n"
  405.                        . $spaces . '                <tr>' . "\n"
  406.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_updates"><tt><dfn title="' . $GLOBALS['strPrivDescMaxUpdates'] . '">MAX UPDATES PER HOUR</dfn></tt></label></td>' . "\n"
  407.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" class="textfield" name="max_updates" id="text_max_updates" value="' . $row['max_updates'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxUpdates'] . '" /></td>' . "\n"
  408.                        . $spaces . '                </tr>' . "\n"
  409.                        . $spaces . '                <tr>' . "\n"
  410.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_connections"><tt><dfn title="' . $GLOBALS['strPrivDescMaxConnections'] . '">MAX CONNECTIONS PER HOUR</dfn></tt></label></td>' . "\n"
  411.                        . $spaces . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" class="textfield" name="max_connections" id="text_max_connections" value="' . $row['max_connections'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxConnections'] . '" /></td>' . "\n"
  412.                        . $spaces . '                </tr>' . "\n"
  413.                        . $spaces . '            </table>' . "\n"
  414.                        . $spaces . '        </td>' . "\n";
  415.                     $limitTable = TRUE;
  416.                 } else if (!$limitTable) {
  417.                     echo $spaces . '        <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2"> </td>' . "\n";
  418.                 }
  419.             }
  420.         }
  421.         echo $spaces . '    </tr>' . "\n";
  422.     }
  423.     if ($submit) {
  424.         echo $spaces . '    <tr>' . "\n"
  425.            . $spaces . '        <td colspan="6" align="right">' . "\n"
  426.            . $spaces . '            <input type="submit" name="update_privs" value="' . $GLOBALS['strGo'] . '" />' . "\n"
  427.            . $spaces . '        </td>' . "\n"
  428.            . $spaces . '    </tr>' . "\n";
  429.     }
  430.     echo $spaces . '</table>' . "\n";
  431. } // end of the 'PMA_displayPrivTable()' function
  432.  
  433.  
  434. /**
  435.  * Displays the fields used by the "new user" form as well as the
  436.  * "change login information / copy user" form.
  437.  *
  438.  * @param   string     are we creating a new user or are we just changing one?
  439.  *                     (allowed values: 'new', 'change')
  440.  * @param   int        the indenting level of the code
  441.  *
  442.  * @global  array      the phpMyAdmin configuration
  443.  * @global  ressource  the database connection
  444.  *
  445.  * @return  void
  446.  */
  447. function PMA_displayLoginInformationFields($mode = 'new', $indent = 0)
  448. {
  449.     global $cfg, $userlink;
  450.     $spaces = '';
  451.     for ($i = 0; $i < $indent; $i++) {
  452.         $spaces .= '    ';
  453.     }
  454.     echo $spaces . '<tr>' . "\n"
  455.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  456.        . $spaces . '        <label for="select_pred_username">' . "\n"
  457.        . $spaces . '            ' . $GLOBALS['strUserName'] . ':' . "\n"
  458.        . $spaces . '        </label>' . "\n"
  459.        . $spaces . '    </td>' . "\n"
  460.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  461.        . $spaces . '        <select name="pred_username" id="select_pred_username" title="' . $GLOBALS['strUserName'] . '"' . "\n"
  462.        . $spaces . '            onchange="if (this.value == \'any\') { username.value = \'\'; } else if (this.value == \'userdefined\') { username.focus(); username.select(); }">' . "\n"
  463.        . $spaces . '            <option value="any"' . ((isset($GLOBALS['pred_username']) && $GLOBALS['pred_username'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyUser'] . '</option>' . "\n"
  464.        . $spaces . '            <option value="userdefined"' . ((!isset($GLOBALS['pred_username']) || $GLOBALS['pred_username'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
  465.        . $spaces . '        </select>' . "\n"
  466.        . $spaces . '    </td>' . "\n"
  467.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  468.        . $spaces . '        <input type="text" class="textfield" name="username" class="textfield" title="' . $GLOBALS['strUserName'] . '"' . (empty($GLOBALS['username']) ? '' : ' value="' . (isset($GLOBALS['new_username']) ? $GLOBALS['new_username'] : $GLOBALS['username']) . '"') . ' onchange="pred_username.value = \'userdefined\';" />' . "\n"
  469.        . $spaces . '    </td>' . "\n"
  470.        . $spaces . '</tr>' . "\n"
  471.        . $spaces . '<tr>' . "\n"
  472.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  473.        . $spaces . '        <label for="select_pred_hostname">' . "\n"
  474.        . $spaces . '            ' . $GLOBALS['strHost'] . ':' . "\n"
  475.        . $spaces . '        </label>' . "\n"
  476.        . $spaces . '    </td>' . "\n"
  477.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  478.        . $spaces . '        <select name="pred_hostname" id="select_pred_hostname" title="' . $GLOBALS['strHost'] . '"' . "\n";
  479.     $res = PMA_DBI_query('SELECT USER();');
  480.     $row = PMA_DBI_fetch_row($res);
  481.     PMA_DBI_free_result($res);
  482.     unset($res);
  483.     if (!empty($row[0])) {
  484.         $thishost = str_replace("'", '', substr($row[0], (strrpos($row[0], '@') + 1)));
  485.         if ($thishost == 'localhost' || $thishost == '127.0.0.1') {
  486.             unset($thishost);
  487.         }
  488.     }
  489.     echo $spaces . '            onchange="if (this.value == \'any\') { hostname.value = \'%\'; } else if (this.value == \'localhost\') { hostname.value = \'localhost\'; } '
  490.        . (empty($thishost) ? '' : 'else if (this.value == \'thishost\') { hostname.value = \'' . addslashes(htmlspecialchars($thishost)) . '\'; } ')
  491.        . 'else if (this.value == \'hosttable\') { hostname.value = \'\'; } else if (this.value == \'userdefined\') { hostname.focus(); hostname.select(); }">' . "\n";
  492.     unset($row);
  493.  
  494.     // when we start editing a user, $GLOBALS['pred_hostname'] is not defined
  495.     if (!isset($GLOBALS['pred_hostname']) && isset($GLOBALS['hostname'])) {
  496.         switch (strtolower($GLOBALS['hostname'])) {
  497.             case 'localhost':
  498.             case '127.0.0.1':
  499.                 $GLOBALS['pred_hostname'] = 'localhost';
  500.                 break;
  501.             case '%':
  502.                 $GLOBALS['pred_hostname'] = 'any';
  503.                 break;
  504.             default:
  505.                 $GLOBALS['pred_hostname'] = 'userdefined';
  506.                 break;
  507.         }        
  508.     }
  509.     echo $spaces . '            <option value="any"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyHost'] . '</option>' . "\n"
  510.        . $spaces . '            <option value="localhost"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'localhost') ? ' selected="selected"' : '') . '>' . $GLOBALS['strLocalhost'] . '</option>' . "\n";
  511.     if (!empty($thishost)) {
  512.         echo $spaces . '            <option value="thishost"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'thishost') ? ' selected="selected"' : '') . '>' . $GLOBALS['strThisHost'] . '</option>' . "\n";
  513.     }
  514.     unset($thishost);
  515.     echo $spaces . '            <option value="hosttable"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'hosttable') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseHostTable'] . '</option>' . "\n"
  516.        . $spaces . '            <option value="userdefined"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
  517.        . $spaces . '        </select>' . "\n"
  518.        . $spaces . '    </td>' . "\n"
  519.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  520.        . $spaces . '        <input type="text" class="textfield" name="hostname" value="' . ( isset($GLOBALS['hostname']) ? $GLOBALS['hostname'] : '' ) . '" class="textfield" title="' . $GLOBALS['strHost'] . '" onchange="pred_hostname.value = \'userdefined\';" />' . "\n"
  521.        . $spaces . '    </td>' . "\n"
  522.        . $spaces . '</tr>' . "\n"
  523.        . $spaces . '<tr>' . "\n"
  524.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  525.        . $spaces . '        <label for="select_pred_password">' . "\n"
  526.        . $spaces . '            ' . $GLOBALS['strPassword'] . ':' . "\n"
  527.        . $spaces . '        </label>' . "\n"
  528.        . $spaces . '    </td>' . "\n"
  529.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  530.        . $spaces . '        <select name="pred_password" id="select_pred_password" title="' . $GLOBALS['strPassword'] . '"' . "\n"
  531.        . $spaces . '            onchange="if (this.value == \'none\') { pma_pw.value = \'\'; pma_pw2.value = \'\'; } else if (this.value == \'userdefined\') { pma_pw.focus(); pma_pw.select(); }">' . "\n"
  532.        . ($mode == 'change' ? $spaces . '            <option value="keep" selected="selected">' . $GLOBALS['strKeepPass'] . '</option>' . "\n" : '')
  533.        . $spaces . '            <option value="none">' . $GLOBALS['strNoPassword'] . '</option>' . "\n"
  534.        . $spaces . '            <option value="userdefined"' . ($mode == 'change' ? '' : ' selected="selected"') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
  535.        . $spaces . '        </select>' . "\n"
  536.        . $spaces . '    </td>' . "\n"
  537.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  538.        . $spaces . '        <input type="password" name="pma_pw" class="textfield" title="' . $GLOBALS['strPassword'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
  539.        . $spaces . '    </td>' . "\n"
  540.        . $spaces . '</tr>' . "\n"
  541.        . $spaces . '<tr>' . "\n"
  542.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  543.        . $spaces . '        <label for="text_pma_pw2">' . "\n"
  544.        . $spaces . '            ' . $GLOBALS['strReType'] . ':' . "\n"
  545.        . $spaces . '        </label>' . "\n"
  546.        . $spaces . '    </td>' . "\n"
  547.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '"> </td>' . "\n"
  548.        . $spaces . '    <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  549.        . $spaces . '        <input type="password" name="pma_pw2" id="text_pma_pw2" class="textfield" title="' . $GLOBALS['strReType'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
  550.        . $spaces . '    </td>' . "\n"
  551.        . $spaces . '</tr>' . "\n";
  552. } // end of the 'PMA_displayUserAndHostFields()' function
  553.  
  554.  
  555. /**
  556.  * Changes / copies a user, part I
  557.  */
  558. if (!empty($change_copy)) {
  559.     $user_host_condition = ' WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($old_username), 'quoted') . ' AND ' . PMA_convert_using('Host') .  ' = ' . PMA_convert_using($old_hostname, 'quoted') . ';';
  560.     $res = PMA_DBI_query('SELECT * FROM `mysql`.`user` ' . $user_host_condition);
  561.     if (!$res) {
  562.         $message = $strNoUsersFound;
  563.         unset($change_copy);
  564.     } else {
  565.         $row = PMA_DBI_fetch_assoc($res);
  566.         extract($row, EXTR_OVERWRITE);
  567.         // Recent MySQL versions have the field "Password" in mysql.user,
  568.         // so the previous extract creates $Password but this script
  569.         // uses $password
  570.         if (!isset($password) && isset($Password)) {
  571.             $password=$Password;
  572.         }
  573.         PMA_DBI_free_result($res);
  574.         $queries = array();
  575.     }
  576. }
  577.  
  578.  
  579. /**
  580.  * Adds a user
  581.  *   (Changes / copies a user, part II)
  582.  */
  583. if (!empty($adduser_submit) || !empty($change_copy)) {
  584.     unset($sql_query);
  585.     if ($pred_username == 'any') {
  586.         $username = '';
  587.     }
  588.     switch ($pred_hostname) {
  589.         case 'any':
  590.             $hostname = '%';
  591.             break;
  592.         case 'localhost':
  593.             $hostname = 'localhost';
  594.             break;
  595.         case 'hosttable':
  596.             $hostname = '';
  597.             break;
  598.         case 'thishost':
  599.             $res = PMA_DBI_query('SELECT USER();');
  600.             $row = PMA_DBI_fetch_row($res);
  601.             PMA_DBI_free_result($res);
  602.             unset($res);
  603.             $hostname = substr($row[0], (strrpos($row[0], '@') + 1));
  604.             unset($row);
  605.             break;
  606.     }
  607.     $res = PMA_DBI_query('SELECT \'foo\' FROM `user` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted') . ';', NULL, PMA_DBI_QUERY_STORE);
  608.     if (PMA_DBI_num_rows($res) == 1) {
  609.         PMA_DBI_free_result($res);
  610.         $message = sprintf($strUserAlreadyExists, '[i]\'' . $username . '\'@\'' . $hostname . '\'[/i]');
  611.         $adduser = 1;
  612.     } else {
  613.         PMA_DBI_free_result($res);
  614.         $real_sql_query = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'';
  615.         if ($pred_password != 'none' && $pred_password != 'keep') {
  616.             $pma_pw_hidden = '';
  617.             for ($i = 0; $i < strlen($pma_pw); $i++) {
  618.                 $pma_pw_hidden .= '*';
  619.             }
  620.             $sql_query = $real_sql_query . ' IDENTIFIED BY \'' . $pma_pw_hidden . '\'';
  621.             $real_sql_query .= ' IDENTIFIED BY \'' . $pma_pw . '\'';
  622.         } else {
  623.             if ($pred_password == 'keep' && !empty($password)) {
  624.                 $real_sql_query .= ' IDENTIFIED BY PASSWORD \'' . $password . '\'';
  625.             }
  626.             $sql_query = $real_sql_query;
  627.         }
  628.         if ((isset($Grant_priv) && $Grant_priv == 'Y') || (PMA_MYSQL_INT_VERSION >= 40002 && (isset($max_questions) || isset($max_connections) || isset($max_updates)))) {
  629.             $real_sql_query .= 'WITH';
  630.             $sql_query .= 'WITH';
  631.             if (isset($Grant_priv) && $Grant_priv == 'Y') {
  632.                 $real_sql_query .= ' GRANT OPTION';
  633.                 $sql_query .= ' GRANT OPTION';
  634.             }
  635.             if (PMA_MYSQL_INT_VERSION >= 40002) {
  636.                 if (isset($max_questions)) {
  637.                     $real_sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
  638.                     $sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
  639.                 }
  640.                 if (isset($max_connections)) {
  641.                     $real_sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
  642.                     $sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
  643.                 }
  644.                 if (isset($max_updates)) {
  645.                     $real_sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
  646.                     $sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
  647.                 }
  648.             }
  649.         }
  650.         $real_sql_query .= ';';
  651.         $sql_query .= ';';
  652.         if (empty($change_copy)) {
  653.             PMA_DBI_try_query($real_sql_query) or PMA_mysqlDie(PMA_DBI_getError(), $sql_query);
  654.             $message = $strAddUserMessage;
  655.         } else {
  656.             $queries[]             = $real_sql_query;
  657.             // we put the query containing the hidden password in
  658.             // $queries_for_display, at the same position occupied
  659.             // by the real query in $queries
  660.             $tmp_count = count($queries);
  661.             $queries_for_display[$tmp_count - 1] = $sql_query;
  662.         }
  663.         unset($res, $real_sql_query);
  664.     }
  665. }
  666.  
  667.  
  668. /**
  669.  * Changes / copies a user, part III
  670.  */
  671. if (!empty($change_copy)) {
  672.     $user_host_condition = ' WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($old_username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($old_hostname, 'quoted') . ';';
  673.     $res = PMA_DBI_query('SELECT * FROM `mysql`.`db`' . $user_host_condition );
  674.     while ($row = PMA_DBI_fetch_assoc($res)) {
  675.         $queries[] = 'GRANT ' . join(', ', PMA_extractPrivInfo($row)) . ' ON `' . $row['Db'] . '`.* TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'' . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION' : '') . ';';
  676.     }
  677.     PMA_DBI_free_result($res);
  678.     $res = PMA_DBI_query('SELECT `Db`, `Table_name`, `Table_priv` FROM `mysql`.`tables_priv`' . $user_host_condition, $userlink, PMA_DBI_QUERY_STORE);
  679.     while ($row = PMA_DBI_fetch_assoc($res)) {
  680.  
  681.         $res2 = PMA_DBI_QUERY('SELECT `Column_name`, `Column_priv` FROM `mysql`.`columns_priv` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($old_username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($old_hostname, 'quoted') . ' AND ' . PMA_convert_using('Db') .  ' = ' . PMA_convert_using($row['Db'], 'quoted') . ' AND ' . PMA_convert_using('Table_name') . ' = ' . PMA_convert_using($row['Table_name'], 'quoted') . ';', NULL, PMA_DBI_QUERY_STORE);
  682.  
  683.         $tmp_privs1 = PMA_extractPrivInfo($row);
  684.         $tmp_privs2 = array(
  685.             'Select' => array(),
  686.             'Insert' => array(),
  687.             'Update' => array(),
  688.             'References' => array()
  689.         );
  690.  
  691.         while ($row2 = PMA_DBI_fetch_assoc($res2)) {
  692.             $tmp_array = explode(',', $row2['Column_priv']);
  693.             if (in_array('Select', $tmp_array)) {
  694.                 $tmp_privs2['Select'][] = $row2['Column_name'];
  695.             }
  696.             if (in_array('Insert', $tmp_array)) {
  697.                 $tmp_privs2['Insert'][] = $row2['Column_name'];
  698.             }
  699.             if (in_array('Update', $tmp_array)) {
  700.                 $tmp_privs2['Update'][] = $row2['Column_name'];
  701.             }
  702.             if (in_array('References', $tmp_array)) {
  703.                 $tmp_privs2['References'][] = $row2['Column_name'];
  704.             }
  705.             unset($tmp_array);
  706.         }
  707.         if (count($tmp_privs2['Select']) > 0 && !in_array('SELECT', $tmp_privs1)) {
  708.             $tmp_privs1[] = 'SELECT (`' . join('`, `', $tmp_privs2['Select']) . '`)';
  709.         }
  710.         if (count($tmp_privs2['Insert']) > 0 && !in_array('INSERT', $tmp_privs1)) {
  711.             $tmp_privs1[] = 'INSERT (`' . join('`, `', $tmp_privs2['Insert']) . '`)';
  712.         }
  713.         if (count($tmp_privs2['Update']) > 0 && !in_array('UPDATE', $tmp_privs1)) {
  714.             $tmp_privs1[] = 'UPDATE (`' . join('`, `', $tmp_privs2['Update']) . '`)';
  715.         }
  716.         if (count($tmp_privs2['References']) > 0 && !in_array('REFERENCES', $tmp_privs1)) {
  717.             $tmp_privs1[] = 'REFERENCES (`' . join('`, `', $tmp_privs2['References']) . '`)';
  718.         }
  719.         unset($tmp_privs2);
  720.         $queries[] = 'GRANT ' . join(', ', $tmp_privs1) . ' ON `' . $row['Db'] . '`.`' . $row['Table_name'] . '` TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'' . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION' : '') . ';';
  721.     }
  722. }
  723.  
  724.  
  725. /**
  726.  * Updates privileges
  727.  */
  728. if (!empty($update_privs)) {
  729.     // escaping a wildcard character in a GRANT is only accepted at the global
  730.     // or database level, not at table level; this is why I remove
  731.     // the escaping character
  732.     // Note: in the phpMyAdmin list of Database-specific privileges,
  733.     //  we will have for example
  734.     //  test\_db  SELECT (this one is for privileges on a db level)
  735.     //  test_db   USAGE  (this one is for table-specific privileges)
  736.     //
  737.     // It looks curious but reflects the way MySQL works
  738.  
  739.     if (empty($dbname)) {
  740.         $db_and_table = '*.*';
  741.     } else {
  742.         if (!empty($tablename)) {
  743.             $db_and_table = str_replace('\\','',PMA_backquote($dbname))
  744.                           . '.' . PMA_backquote($tablename);
  745.         } else {
  746.             // do not remove the escaping character when working at db level 
  747.             $db_and_table = PMA_backquote($dbname)
  748.                           . '.*'; 
  749.         }
  750.     }
  751.  
  752.  
  753.     $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
  754.     if (!isset($Grant_priv) || $Grant_priv != 'Y') {
  755.         $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
  756.     }
  757.     $sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON ' . $db_and_table . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'';
  758.  
  759.     if ((isset($Grant_priv) && $Grant_priv == 'Y') || (empty($dbname) && PMA_MYSQL_INT_VERSION >= 40002 && (isset($max_questions) || isset($max_connections) || isset($max_updates)))) {
  760.         $sql_query2 .= 'WITH';
  761.         if (isset($Grant_priv) && $Grant_priv == 'Y') {
  762.             $sql_query2 .= ' GRANT OPTION';
  763.         }
  764.         if (PMA_MYSQL_INT_VERSION >= 40002) {
  765.             if (isset($max_questions)) {
  766.                 $sql_query2 .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
  767.             }
  768.             if (isset($max_connections)) {
  769.                 $sql_query2 .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
  770.             }
  771.             if (isset($max_updates)) {
  772.                 $sql_query2 .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
  773.             }
  774.         }
  775.     }
  776.     $sql_query2 .= ';';
  777.     if (!PMA_DBI_try_query($sql_query0)) { // this query may fail, but this does not matter :o)
  778.         unset($sql_query0);
  779.     }
  780.     if (isset($sql_query1) && !PMA_DBI_try_query($sql_query1)) { // this one may fail, too...
  781.         unset($sql_query1);
  782.     }
  783.     PMA_DBI_query($sql_query2);
  784.     $sql_query = (isset($sql_query0) ? $sql_query0 . ' ' : '')
  785.                . (isset($sql_query1) ? $sql_query1 . ' ' : '')
  786.                . $sql_query2;
  787.     $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
  788. }
  789.  
  790.  
  791. /**
  792.  * Revokes Privileges
  793.  */
  794. if (!empty($revokeall)) {
  795.     $db_and_table = PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
  796.     $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM \'' . $username . '\'@\'' . $hostname . '\';';
  797.     $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM \'' . $username . '\'@\'' . $hostname . '\';';
  798.     PMA_DBI_query($sql_query0);
  799.     if (!PMA_DBI_try_query($sql_query1)) { // this one may fail, too...
  800.         unset($sql_query1);
  801.     }
  802.     $sql_query = $sql_query0 . (isset($sql_query1) ? ' ' . $sql_query1 : '');
  803.     $message = sprintf($strRevokeMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
  804.     if (empty($tablename)) {
  805.         unset($dbname);
  806.     } else {
  807.         unset($tablename);
  808.     }
  809. }
  810.  
  811.  
  812. /**
  813.  * Updates the password
  814.  */
  815. if (!empty($change_pw)) {
  816.     if ($nopass == 1) {
  817.         $sql_query = 'SET PASSWORD FOR \'' . $username . '\'@\'' . $hostname . '\' = \'\';';
  818.         PMA_DBI_query($sql_query);
  819.         $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
  820.     } else if (empty($pma_pw) || empty($pma_pw2)) {
  821.         $message = $strPasswordEmpty;
  822.     } else if ($pma_pw != $pma_pw2) {
  823.         $message = $strPasswordNotSame;
  824.     } else {
  825.         $hidden_pw = '';
  826.         for ($i = 0; $i < strlen($pma_pw); $i++) {
  827.             $hidden_pw .= '*';
  828.         }
  829.         $local_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\' = PASSWORD(\'' . PMA_sqlAddslashes($pma_pw) . '\')';
  830.         $sql_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\' = PASSWORD(\'' . $hidden_pw . '\')';
  831.         PMA_DBI_try_query($local_query) or PMA_mysqlDie(PMA_DBI_getError(), $sql_query);
  832.         $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
  833.     }
  834. }
  835.  
  836.  
  837. /**
  838.  * Deletes users
  839.  *   (Changes / copies a user, part IV)
  840.  */
  841. $user_host_separator = chr(27);
  842.  
  843. if (!empty($delete) || (!empty($change_copy) && $mode < 4)) {
  844.     if (!empty($change_copy)) {
  845.         $selected_usr = array($old_username . $user_host_separator . $old_hostname);
  846.     } else {
  847.         $queries = array();
  848.     }
  849.     for ($i = 0; isset($selected_usr[$i]); $i++) {
  850.         list($this_user, $this_host) = explode($user_host_separator, $selected_usr[$i]);
  851.         $queries[] = '# ' . sprintf($strDeleting, '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...';
  852.         if ($mode == 2) {
  853.             // The SHOW GRANTS query may fail if the user has not been loaded
  854.             // into memory
  855.             $res = PMA_DBI_try_query('SHOW GRANTS FOR \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . $this_host . '\';');
  856.             if ($res) {
  857.                 $queries[] = 'REVOKE ALL PRIVILEGES ON *.* FROM \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . $this_host . '\';';
  858.                 while ($row = PMA_DBI_fetch_row($res)) {
  859.                     $this_table = substr($row[0], (strpos($row[0], 'ON') + 3), (strpos($row[0], ' TO ') - strpos($row[0], 'ON') - 3));
  860.                     if ($this_table != '*.*') {
  861.                         $queries[] = 'REVOKE ALL PRIVILEGES ON ' . $this_table . ' FROM \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . $this_host . '\';';
  862.  
  863.                         if (strpos($row[0], 'WITH GRANT OPTION')) {
  864.                             $queries[] = 'REVOKE GRANT OPTION ON ' . $this_table . ' FROM \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . $this_host . '\';';
  865.                         }
  866.                     }
  867.                     unset($this_table);
  868.                 }
  869.                 PMA_DBI_free_result($res);
  870.             }
  871.             unset($res);
  872.         }
  873.         $queries[] = 'DELETE FROM `user` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($this_user), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($this_host, 'quoted') . ';';
  874.         if ($mode != 2) {
  875.             // If we REVOKE the table grants, we should not need to modify the
  876.             // `db`, `tables_priv` and `columns_priv` tables manually...
  877.             $user_host_condition = ' WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($this_user), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($this_host, 'quoted') . ';';
  878.             $queries[] = 'DELETE FROM `db`' . $user_host_condition;
  879.             $queries[] = 'DELETE FROM `tables_priv`' . $user_host_condition;
  880.             $queries[] = 'DELETE FROM `columns_priv`' . $user_host_condition;
  881.         }
  882.         if (!empty($drop_users_db)) {
  883.             $queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
  884.         }
  885.     }
  886.     if (empty($change_copy)) {
  887.         if (empty($queries)) {
  888.             $message = $strError . ': ' . $strDeleteNoUsersSelected;
  889.         } else {
  890.             if ($mode == 3) {
  891.                 $queries[] = '# ' . $strReloadingThePrivileges . ' ...';
  892.                 $queries[] = 'FLUSH PRIVILEGES;';
  893.             }
  894.             foreach ($queries as $sql_query) {
  895.                 if ($sql_query{0} != '#') {
  896.                     PMA_DBI_query($sql_query, $userlink);
  897.                 }
  898.             }
  899.             $sql_query = join("\n", $queries);
  900.             $message = $strUsersDeleted;
  901.         }
  902.         unset($queries);
  903.     }
  904. }
  905.  
  906.  
  907. /**
  908.  * Changes / copies a user, part V
  909.  */
  910. if (!empty($change_copy)) {
  911.     $tmp_count = -1;
  912.     foreach ($queries as $sql_query) {
  913.         $tmp_count++;
  914.         if ($sql_query{0} != '#') {
  915.             PMA_DBI_query($sql_query);
  916.         }
  917.         // when there is a query containing a hidden password, take it
  918.         // instead of the real query sent
  919.         if (isset($queries_for_display[$tmp_count])) {
  920.             $queries[$tmp_count] = $queries_for_display[$tmp_count];
  921.         }
  922.     }
  923.     $message = $strSuccess;
  924.     $sql_query = join("\n", $queries);
  925. }
  926.  
  927.  
  928. /**
  929.  * Reloads the privilege tables into memory
  930.  */
  931. if (!empty($flush_privileges)) {
  932.     $sql_query = 'FLUSH PRIVILEGES;';
  933.     PMA_DBI_query($sql_query);
  934.     $message = $strPrivilegesReloaded;
  935. }
  936.  
  937.  
  938. /**
  939.  * Displays the links
  940.  */
  941. require('./server_links.inc.php');
  942.  
  943.  
  944. /**
  945.  * Displays the page
  946.  */
  947. if (empty($adduser) && empty($checkprivs)) {
  948.     if (!isset($username)) {
  949.         // No username is given --> display the overview
  950.         echo '<h2>' . "\n"
  951.            . '    ' . ($GLOBALS['cfg']['MainPageIconic'] ? '<img src="'. $GLOBALS['pmaThemeImage'] . 'b_usrlist.png" border="0" hspace="2" align="middle" />' : '')
  952.            . $strUserOverview . "\n"
  953.            . '</h2>' . "\n";
  954.         $oldPrivTables = FALSE;
  955.         if (PMA_MYSQL_INT_VERSION >= 40002) {
  956.             $sql_query = 'SELECT `User`, `Host`, IF(`Password` = ' . (PMA_MYSQL_INT_VERSION >= 40100 ? '_latin1 ' : '') . '\'\', \'N\', \'Y\') AS \'Password\', `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv`, `Grant_priv`, `References_priv`, `Index_priv`, `Alter_priv`, `Show_db_priv`, `Super_priv`, `Create_tmp_table_priv`, `Lock_tables_priv`, `Execute_priv`, `Repl_slave_priv`, `Repl_client_priv` FROM `user` ';
  957.  
  958.             // the strtolower() is because sometimes the User field
  959.             // might be BINARY, so LIKE would be case sensitive
  960.             if (isset($initial)) {
  961.                 $sql_query .= " WHERE " . PMA_convert_using('User')
  962.                  . " LIKE " . PMA_convert_using($initial . '%', 'quoted')
  963.                  . " OR ". PMA_convert_using('User')
  964.                  . " LIKE " . PMA_convert_using(strtolower($initial) . '%', 'quoted');
  965.             }
  966.  
  967.             $sql_query .= ' ORDER BY `User` ASC, `Host` ASC;';
  968.             $res = PMA_DBI_try_query($sql_query, NULL, PMA_DBI_QUERY_STORE);
  969.  
  970.             if (!$res) {
  971.                 // the query failed! This may have two reasons:
  972.                 // - the user has not enough privileges
  973.                 // - the privilege tables use a structure of an earlier version.
  974.                 $oldPrivTables = TRUE;
  975.             }
  976.         }
  977.         if (empty($res) || PMA_MYSQL_INT_VERSION < 40002) {
  978.             $sql_query = 'SELECT `User`, `Host`, IF(`Password` = ' . (PMA_MYSQL_INT_VERSION >= 40100 ? '_latin1 ' : '') . '\'\', \'N\', \'Y\') AS \'Password\', `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Index_priv`, `Alter_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv` FROM `user`';
  979.  
  980.             if (isset($initial)) {
  981.                 $sql_query .= " WHERE " . PMA_convert_using('User')
  982.                  . " LIKE " . PMA_convert_using($initial . '%', 'quoted')
  983.                  . " OR ". PMA_convert_using('User')
  984.                  . " LIKE " . PMA_convert_using(strtolower($initial) . '%', 'quoted');
  985.             }
  986.  
  987.             $sql_query .= ' ORDER BY `User` ASC, `Host` ASC;';
  988.             $res = PMA_DBI_try_query($sql_query, NULL, PMA_DBI_QUERY_STORE);
  989.  
  990.             if (!$res) {
  991.                 // the query failed! This may have two reasons:
  992.                 // - the user has not enough privileges
  993.                 // - the privilege tables use a structure of an earlier version.
  994.                 $oldPrivTables = TRUE;
  995.             }
  996.         }
  997.         if (!$res) {
  998.             echo '<i>' . $strNoPrivileges . '</i>' . "\n";
  999.             PMA_DBI_free_result($res);
  1000.             unset($res);
  1001.         } else {
  1002.             if ($oldPrivTables) {
  1003.                 // rabus: This message is hardcoded because I will replace it by
  1004.                 // a automatic repair feature soon.
  1005.                 echo '<div class="warning">' . "\n"
  1006.                    . '    Warning: Your privilege table structure seem to be older than this MySQL version!<br />' . "\n"
  1007.                    . '    Please run the script <tt>mysql_fix_privilege_tables</tt> that should be included in your MySQL server distribution to solve this problem!' . "\n"
  1008.                    . '</div><br />' . "\n";
  1009.             }
  1010.  
  1011.             /**
  1012.             * Displays the initials
  1013.             */
  1014.  
  1015.             // for all initials, even non A-Z
  1016.             $array_initials = array();
  1017.  
  1018.             // initialize to FALSE the letters A-Z
  1019.             for ($letter_counter = 1; $letter_counter < 27; $letter_counter++) {
  1020.                 $array_initials[chr($letter_counter + 64)] = FALSE;
  1021.             }
  1022.  
  1023.             $initials = PMA_DBI_try_query('SELECT DISTINCT UPPER(LEFT(' . PMA_convert_using('User') . ',1)) FROM `user` ORDER BY `User` ASC', NULL, PMA_DBI_QUERY_STORE);
  1024.             while (list($tmp_initial) = PMA_DBI_fetch_row($initials)) {
  1025.                 $array_initials[$tmp_initial] = TRUE;
  1026.             }
  1027.  
  1028.             // Display the initials, which can be any characters, not 
  1029.             // just letters. For letters A-Z, we add the non-used letters
  1030.             // as greyed out.
  1031.  
  1032.             uksort($array_initials, "strnatcasecmp");
  1033.             reset($array_initials);
  1034.  
  1035.             echo '<table cellspacing="5" ><tr>';
  1036.             foreach ($array_initials as $tmp_initial => $initial_was_found) {
  1037.  
  1038.                 if ($initial_was_found) {
  1039.                     echo '<td><a href="' . $PHP_SELF . '?' . $url_query . '&initial=' . urlencode($tmp_initial) . '" style="font-size:' . $font_bigger . '">' . $tmp_initial . '</a></td>' . "\n";
  1040.                 } else {
  1041.                     echo '<td style="font-size:' . $font_bigger . '">' . $tmp_initial . '</td>';
  1042.                 }
  1043.             }
  1044.             echo '<td><a href="' . $PHP_SELF . '?' . $url_query . '&showall=1" style="font-size:' . $font_bigger . '">[' . $strShowAll . ']</a></td>' . "\n";
  1045.             echo '</tr></table>';
  1046.  
  1047.             /**
  1048.             * Displays the user overview 
  1049.             */
  1050.  
  1051.             if (isset($initial) || isset($showall) || PMA_DBI_num_rows($res) < 50) {
  1052.  
  1053.                 echo '<form name="usersForm" action="server_privileges.php" method="post">' . "\n"
  1054.                    . PMA_generate_common_hidden_inputs('', '', 1)
  1055.                    . '    <table border="0" cellpadding="2" cellspacing="1">' . "\n"
  1056.                    . '        <tr>' . "\n"
  1057.                    . '            <td></td>' . "\n"
  1058.                    . '            <th> ' . $strUser . ' </th>' . "\n"
  1059.                    . '            <th> ' . $strHost . ' </th>' . "\n"
  1060.                    . '            <th> ' . $strPassword . ' </th>' . "\n"
  1061.                    . '            <th> ' . $strGlobalPrivileges . ' </th>' . "\n"
  1062.                    . '            <th> ' . $strGrantOption . ' </th>' . "\n"
  1063.                    . '            ' . ($cfg['PropertiesIconic'] ? '<td> </td>' : '<th>' . $strAction . '</th>') . "\n";
  1064.                 echo '        </tr>' . "\n";
  1065.                 $useBgcolorOne = TRUE;
  1066.                 for ($i = 0; $row = PMA_DBI_fetch_assoc($res); $i++) {
  1067.                     echo '        <tr>' . "\n"
  1068.                        . '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><input type="checkbox" name="selected_usr[]" id="checkbox_sel_users_' . $i . '" value="' . htmlspecialchars($row['User'] . $user_host_separator . $row['Host']) . '"' . (empty($checkall) ?  '' : ' checked="checked"') . ' /></td>' . "\n"
  1069.                        . '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><label for="checkbox_sel_users_' . $i . '">' . (empty($row['User']) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($row['User'])) . '</label></td>' . "\n"
  1070.                        . '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row['Host']) . '</td>' . "\n";
  1071.                     $privs = PMA_extractPrivInfo($row, TRUE);
  1072.                     echo '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Password'] == 'Y' ? $strYes : '<span style="color: #FF0000">' . $strNo . '</span>') . '</td>' . "\n"
  1073.                        . '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
  1074.                        . '                ' . join(',' . "\n" . '            ', $privs) . "\n"
  1075.                        . '            </tt></td>' . "\n"
  1076.                        . '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Grant_priv'] == 'Y' ? $strYes : $strNo) . '</td>' . "\n"
  1077.                        . '            <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '" align="center"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($row['User']) . '&hostname=' . urlencode($row['Host']) . '">';
  1078.                     if ($GLOBALS['cfg']['PropertiesIconic']) {
  1079.                         echo '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_usredit.png" width="16" height="16" border="0" hspace="2" align="middle" alt="' . $strEditPrivileges . '" title="' . $strEditPrivileges . '" />';
  1080.                     } else {
  1081.                         echo $strEditPrivileges;
  1082.                     }
  1083.                     echo '</a></td>' . "\n"
  1084.                        . '        </tr>' . "\n";
  1085.                     $useBgcolorOne = !$useBgcolorOne;
  1086.                 }
  1087.                 @PMA_DBI_free_result($res);
  1088.                 unset($res);
  1089.                 unset ($row);
  1090.                 echo '        <tr>' . "\n"
  1091.                    . '            <td></td>' . "\n"
  1092.                    . '            <td colspan="5">' . "\n"
  1093.                    . '                 <i>' . $strEnglishPrivileges . '</i> ' . "\n"
  1094.                    . '            </td>' . "\n"
  1095.                    . '        </tr>' . "\n"
  1096.                    . '        <tr>' . "\n"
  1097.                    . '            <td colspan="6" valign="bottom">' . "\n"
  1098.                    . '                <img src="' . $pmaThemeImage . 'arrow_' . $text_dir . '.png" border="0" width="38" height="22" alt="' . $strWithChecked . '" />' . "\n"
  1099.                    . '                <a href="./server_privileges.php?' . $url_query .  '&checkall=1" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', true); return false;">' . $strCheckAll . '</a>' . "\n"
  1100.                    . '                 / ' . "\n"
  1101.                    . '                <a href="server_privileges.php?' . $url_query .  '" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', false); return false;">' . $strUncheckAll . '</a>' . "\n"
  1102.                    . '            </td>' . "\n"
  1103.                    . '        </tr>' . "\n"
  1104.                    . '    </table>' . "\n"
  1105.                    . '    <br /><table border="0" cellpading="3" cellspacing="0">' . "\n"
  1106.                    . '        <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td '
  1107.                    . ($cfg['PropertiesIconic'] ? 'colspan="3"><b><a href="server_privileges.php?' . $url_query . '&adduser=1"><img src="' . $pmaThemeImage . 'b_usradd.png" width="16" height="16" hspace="2" border="0" align="middle" />' : 'width="20" nowrap="nowrap" align="center" valign="top"><b>•</b></td><td><b><a href="server_privileges.php?' . $url_query . '&adduser=1">' ). "\n"
  1108.                    . '            ' . $strAddUser . '</a></b>' . "\n"
  1109.                    . '            ' . "\n"
  1110.                    . '        </td></tr>' . "\n" . '        <tr><td colspan="2"></td></tr>'
  1111.                    . '        <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td '
  1112.                    . ($cfg['PropertiesIconic'] ? 'colspan="3"><b><img src="' . $pmaThemeImage . 'b_usrdrop.png" width="16" height="16" hspace="2" border="0" align="middle" />' : 'width="20" nowrap="nowrap" align="center" valign="top"><b>•</b></td><td><b>' ). "\n"
  1113.                    . '            <b>' . $strRemoveSelectedUsers . '</b>' . "\n"
  1114.                    . '        </td></tr>' . "\n"
  1115.                    . '            <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td width="16" class="nowrap"> </td><td valign="top"><input type="radio" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '" name="mode" id="radio_mode_1" value="1" checked="checked" /></td>' . "\n"
  1116.                    . '            <td><label for="radio_mode_1" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '">' . "\n"
  1117.                    . '                ' . $strJustDelete . "\n"
  1118.                    . '            </label></td></tr>' . "\n"
  1119.                    . '            <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td width="16" class="nowrap"> </td><td valign="top"><input type="radio" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '" name="mode" id="radio_mode_2" value="2" /></td>' . "\n"
  1120.                    . '            <td><label for="radio_mode_2" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '">' . "\n"
  1121.                    . '                ' . wordwrap($strRevokeAndDelete,75,'<br />') . "\n"
  1122.                    . '            </label></td></tr>' . "\n"
  1123.                    . '            <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td width="16" class="nowrap"> </td><td valign="top"><input type="radio" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '" name="mode" id="radio_mode_3" value="3" /></td>' . "\n"
  1124.                    . '            <td><label for="radio_mode_3" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '">' . "\n"
  1125.                    . '                ' . $strDeleteAndFlush . "\n"
  1126.                    . '            </label></td></tr>' . "\n"
  1127.                    . '            <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td width="16" class="nowrap"> </td><td valign="top"><input type="checkbox" title="' . $strDropUsersDb . '" name="drop_users_db" id="checkbox_drop_users_db" /></td>' . "\n"
  1128.                    . '            <td><label for="checkbox_drop_users_db" title="' . $strDropUsersDb . '">' . "\n"
  1129.                    . '                ' . $strDropUsersDb . "\n"
  1130.                    . '            </label>' . "\n"
  1131.                    . '        </td></tr>' . "\n" . '        <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td colspan="3" align="right">'
  1132.                    . '            <input type="submit" name="delete" value="' . $strGo . '" id="buttonGo" />' . "\n"
  1133.                    . '        </td></tr>' . "\n"
  1134.                    . '    </table>' . "\n"
  1135.                    . '</form>' . "\n"
  1136.                    . '<div class="tblWarn">' . "\n"
  1137.                    . '    ' . sprintf($strFlushPrivilegesNote, '<a href="server_privileges.php?' . $url_query . '&flush_privileges=1">', '</a>') . "\n"
  1138.                    . '</div>' . "\n";
  1139.                 } // end if (display overview)
  1140.         }
  1141.     } else {
  1142.  
  1143.         // A user was selected -> display the user's properties
  1144.  
  1145.         echo '<h2>' . "\n"
  1146.            . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_usredit.png" width="16" height="16" border="0" hspace="2" align="middle" />' : '' )
  1147.            . '    ' . $strUser . ' <i><a class="h2" href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '">\'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname) . '\'</a></i>' . "\n";
  1148.         if (!empty($dbname)) {
  1149.             echo '    - ' . $strDatabase . ' <i><a class="h2" href="' . $cfg['DefaultTabDatabase'] . '?' . $url_query . '&db=' . urlencode($dbname) . '&reload=1">' . htmlspecialchars($dbname) . '</a></i>' . "\n";
  1150.             if (!empty($tablename)) {
  1151.                 echo '    - ' . $strTable . ' <i><a class="h2" href="' . $cfg['DefaultTabTable'] . '?' . $url_query . '&db=' . urlencode($dbname) . '&table=' . urlencode($tablename) . '&reload=1">' . htmlspecialchars($tablename) . '</a></i>' . "\n";
  1152.             }
  1153.         }
  1154.         echo '</h2>' . "\n";
  1155.         $res = PMA_DBI_query('SELECT \'foo\' FROM `user` WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted') . ';', NULL, PMA_DBI_QUERY_STORE);
  1156.         if (PMA_DBI_num_rows($res) < 1) {
  1157.             echo $strUserNotFound;
  1158.             require_once('./footer.inc.php');
  1159.         }
  1160.         PMA_DBI_free_result($res);
  1161.         unset($res);
  1162.         echo '<ul>' . "\n"
  1163.            . '    <li>' . "\n"
  1164.            . '        <form name="usersForm" action="server_privileges.php" method="post">' . "\n"
  1165.            . PMA_generate_common_hidden_inputs('', '', 3)
  1166.            . '            <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
  1167.            . '            <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
  1168.         if (!empty($dbname)) {
  1169.             echo '            <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '" />' . "\n";
  1170.             if (!empty($tablename)) {
  1171.                 echo '            <input type="hidden" name="tablename" value="' . htmlspecialchars($tablename) . '" />' . "\n";
  1172.             }
  1173.         }
  1174.         echo '            <b>' . $strEditPrivileges . '</b><br />' . "\n";
  1175.         PMA_displayPrivTable((empty($dbname) ? '*' : $dbname), ((empty($dbname) || empty($tablename)) ? '*' : $tablename), TRUE, 3);
  1176.         echo '        </form>' . "\n"
  1177.            . '    </li>' . "\n";
  1178.         if (empty($tablename)) {
  1179.             echo '    <li>' . "\n"
  1180.                . '        <b>' . (empty($dbname) ? $strDbPrivileges : $strTblPrivileges) . '</b><br />' . "\n"
  1181.                . '        <table border="0" cellpadding="2" cellspacing="1">' . "\n"
  1182.                . '            <tr>' . "\n"
  1183.                . '                <th> ' . (empty($dbname) ? $strDatabase : $strTable) . ' </th>' . "\n"
  1184.                . '                <th> ' . $strPrivileges . ' </th>' . "\n"
  1185.                . '                <th> ' . $strGrantOption . ' </th>' . "\n"
  1186.                . '                <th> ' . (empty($dbname) ? $strTblPrivileges : $strColumnPrivileges) . ' </th>' . "\n"
  1187.                . '                <th colspan="2"> ' . $strAction . ' </th>' . "\n"
  1188.                . '            </tr>' . "\n";
  1189.             $user_host_condition = ' WHERE ' . PMA_convert_using('User') . ' = ' . PMA_convert_using(PMA_sqlAddslashes($username), 'quoted') . ' AND ' . PMA_convert_using('Host') . ' = ' . PMA_convert_using($hostname, 'quoted');
  1190.             if (empty($dbname)) {
  1191.                 $sql_query = 'SELECT * FROM `db`' . $user_host_condition . ' ORDER BY `Db` ASC;';
  1192.             } else {
  1193.                 $sql_query = 'SELECT `Table_name`, `Table_priv`, IF(`Column_priv` = ' . (PMA_MYSQL_INT_VERSION >= 40100 ? '_latin1 ' : '') . ' \'\', 0, 1) AS \'Column_priv\' FROM `tables_priv`' . $user_host_condition . ' AND ' . PMA_convert_using('Db') .  ' = ' . PMA_convert_using($dbname, 'quoted') . ' ORDER BY `Table_name` ASC;';
  1194.             }
  1195.             $res = PMA_DBI_query($sql_query, NULL, PMA_DBI_QUERY_STORE);
  1196.             if (PMA_DBI_affected_rows() == 0) {
  1197.                 echo '            <tr>' . "\n"
  1198.                    . '                <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="6"><center><i>' . $strNone . '</i></center></td>' . "\n"
  1199.                    . '            </tr>' . "\n";
  1200.             } else {
  1201.                 $useBgcolorOne = TRUE;
  1202.                 if (empty($dbname)) {
  1203.                     $res2 = PMA_DBI_query('SELECT `Db` FROM `tables_priv`' . $user_host_condition . ' GROUP BY `Db` ORDER BY `Db` ASC;');
  1204.                     $row2 = PMA_DBI_fetch_assoc($res2);
  1205.                 }
  1206.                 $found_rows = array();
  1207.                 while ($row = PMA_DBI_fetch_assoc($res)) {
  1208.  
  1209.                     while (empty($dbname) && $row2 && $row['Db'] > $row2['Db']) {
  1210.                         $found_rows[] = $row2['Db'];
  1211.  
  1212.                         echo '            <tr>' . "\n"
  1213.                            . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
  1214.                            . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
  1215.                            . '                    <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
  1216.                            . '                </tt></td>' . "\n"
  1217.                            . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n"
  1218.                            . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
  1219.                            . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . urlencode($row2['Db']) . '">' . $strEdit . '</a></td>' . "\n"
  1220.                            . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . urlencode($row2['Db']) . '&revokeall=1">' . $strRevoke . '</a></td>' . "\n"
  1221.                            . '            </tr>' . "\n";
  1222.                         $row2 = PMA_DBI_fetch_assoc($res2);
  1223.                         $useBgcolorOne = !$useBgcolorOne;
  1224.                     } // end while
  1225.                     $found_rows[] = empty($dbname) ? $row['Db'] : $row['Table_name'];
  1226.  
  1227.                     echo '            <tr>' . "\n"
  1228.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars(empty($dbname) ? $row['Db'] : $row['Table_name']) . '</td>' . "\n"
  1229.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
  1230.                        . '                    ' . join(',' . "\n" . '            ', PMA_extractPrivInfo($row, TRUE)) . "\n"
  1231.                        . '                </tt></td>' . "\n"
  1232.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . (((empty($dbname) && $row['Grant_priv'] == 'Y') || (!empty($dbname) && in_array('Grant', explode(',', $row['Table_priv'])))) ? $strYes : $strNo) . '</td>' . "\n"
  1233.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">';
  1234.                     if ((empty($dbname) && $row2 && $row['Db'] == $row2['Db'])
  1235.                         || (!empty($dbname) && $row['Column_priv'])) {
  1236.                         echo $strYes;
  1237.                         if (empty($dbname)) {
  1238.                             $row2 = PMA_DBI_fetch_assoc($res2);
  1239.                         }
  1240.                     } else {
  1241.                         echo $strNo;
  1242.                     }
  1243.                     echo '</td>' . "\n"
  1244.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . (empty($dbname) ? urlencode($row['Db']) : urlencode($dbname) . '&tablename=' . urlencode($row['Table_name'])) . '">' . $strEdit . '</a></td>' . "\n"
  1245.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . (empty($dbname) ? urlencode($row['Db']) : urlencode($dbname) . '&tablename=' . urlencode($row['Table_name'])) . '&revokeall=1">' . $strRevoke . '</a></td>' . "\n"
  1246.                        . '            </tr>' . "\n";
  1247.                     $useBgcolorOne = !$useBgcolorOne;
  1248.                 } // end while
  1249.  
  1250.  
  1251.                 while (empty($dbname) && $row2) {
  1252.  
  1253.                     $found_rows[] = $row2['Db'];
  1254.                     echo '            <tr>' . "\n"
  1255.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
  1256.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
  1257.                        . '                    <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
  1258.                        . '                </tt></td>' . "\n"
  1259.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n"
  1260.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
  1261.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . urlencode($row2['Db']) . '">' . $strEdit . '</a></td>' . "\n"
  1262.                        . '                <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php?' . $url_query . '&username=' . urlencode($username) . '&hostname=' . urlencode($hostname) . '&dbname=' . urlencode($row2['Db']) . '&revokeall=1">' . $strRevoke . '</a></td>' . "\n"
  1263.                        . '            </tr>' . "\n";
  1264.                     $row2 = PMA_DBI_fetch_assoc($res2);
  1265.  
  1266.                     $useBgcolorOne = !$useBgcolorOne;
  1267.                 } // end while
  1268.                 if (empty($dbname)) {
  1269.                     PMA_DBI_free_result($res2);
  1270.                     unset($res2);
  1271.                     unset($row2);
  1272.                 }
  1273.             }
  1274.             PMA_DBI_free_result($res);
  1275.             unset($res);
  1276.             unset($row);
  1277.             echo '            <tr>' . "\n"
  1278.                . '                <td colspan="5">' . "\n"
  1279.                . '                    <form action="server_privileges.php" method="post">' . "\n"
  1280.                . PMA_generate_common_hidden_inputs('', '', 6)
  1281.                . '                        <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
  1282.                . '                        <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
  1283.             if (empty($dbname)) {
  1284.                 echo '                        <label for="text_dbname">' . $strAddPrivilegesOnDb . ':</label>' . "\n";
  1285.                 $res = PMA_DBI_query('SHOW DATABASES;');
  1286.                 $pred_db_array = array();
  1287.                 while ($row = PMA_DBI_fetch_row($res)) {
  1288.                     if (!isset($found_rows) || !in_array(str_replace('_', '\\_', $row[0]), $found_rows)) {
  1289.                         $pred_db_array[] = $row[0];
  1290.                     }
  1291.                 }
  1292.                 PMA_DBI_free_result($res);
  1293.                 unset($res);
  1294.                 unset($row);
  1295.                 if (!empty($pred_db_array)) {
  1296.                     echo '                        <select name="pred_dbname" onchange="this.form.submit();">' . "\n"
  1297.                        . '                            <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
  1298.                     foreach ($pred_db_array as $current_db) {
  1299.                         echo '                            <option value="' . htmlspecialchars(str_replace('_', '\\_', $current_db)) . '">' . htmlspecialchars($current_db) . '</option>' . "\n";
  1300.                     }
  1301.                     echo '                        </select>' . "\n";
  1302.                 }
  1303.                 echo '                        <input type="text" id="text_dbname" name="dbname" class="textfield" />' . "\n";
  1304.             } else {
  1305.                 echo '                        <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '"/>' . "\n"
  1306.                    . '                        <label for="text_tablename">' . $strAddPrivilegesOnTbl . ':</label>' . "\n";
  1307.                 if ($res = @PMA_DBI_try_query('SHOW TABLES FROM ' . PMA_backquote($dbname) . ';', NULL, PMA_DBI_QUERY_STORE)) {
  1308.                     $pred_tbl_array = array();
  1309.                     while ($row = PMA_DBI_fetch_row($res)) {
  1310.                         if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
  1311.                             $pred_tbl_array[] = $row[0];
  1312.                         }
  1313.                     }
  1314.                     PMA_DBI_free_result($res);
  1315.                     unset($res);
  1316.                     unset($row);
  1317.                     if (!empty($pred_tbl_array)) {
  1318.                         echo '                        <select name="pred_tablename" onchange="this.form.submit();">' . "\n"
  1319.                            . '                            <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
  1320.                         foreach ($pred_tbl_array as $current_table) {
  1321.                             echo '                            <option value="' . htmlspecialchars($current_table) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
  1322.                         }
  1323.                         echo '                        </select>' . "\n";
  1324.                     }
  1325.                 } else {
  1326.                     unset($res);
  1327.                 }
  1328.                 echo '                        <input type="text" id="text_tablename" name="tablename" class="textfield" />' . "\n";
  1329.             }
  1330.             echo '                        <input type="submit" value="' . $strGo . '" />' . PMA_showHint($strEscapeWildcards) . "\n"
  1331.                . '                    </form>' . "\n"
  1332.                . '                </td>' . "\n"
  1333.                . '            </tr>' . "\n"
  1334.                . '        </table><br />' . "\n"
  1335.                . '    </li>' . "\n";
  1336.         }
  1337.         if (empty($dbname)) {
  1338.             echo '    <li>' . "\n"
  1339.                . '        <form action="server_privileges.php" method="post" onsubmit="return checkPassword(this);">' . "\n"
  1340.                . PMA_generate_common_hidden_inputs('', '', 3)
  1341.                . '            <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
  1342.                . '            <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
  1343.             echo '            <b>' . $strChangePassword . '</b><br />' . "\n"
  1344.                . '            <table border="0" cellpadding="2" cellspacing="1">' . "\n"
  1345.                . '                <tr>' . "\n"
  1346.                . '                    <td bgcolor="' . $cfg['BgcolorOne'] . '"><input type="radio" name="nopass" value="1" id="radio_nopass_1" onclick="pma_pw.value=\'\'; pma_pw2.value=\'\';" /></td>' . "\n"
  1347.                . '                    <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"><label for="radio_nopass_1">' . $strNoPassword . '</label></td>' . "\n"
  1348.                . '                </tr>' . "\n"
  1349.                . '                <tr>' . "\n"
  1350.                . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="radio" name="nopass" value="0" id="radio_nopass_0" onclick="document.getElementById(\'pw_pma_pw\').focus();" /></td>' . "\n"
  1351.                . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="radio_nopass_0">' . $strPassword . ':</label></td>' . "\n"
  1352.                . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw" id="pw_pma_pw" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
  1353.                . '                </tr>' . "\n"
  1354.                . '                <tr>' . "\n"
  1355.                . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"> </td>' . "\n"
  1356.                . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="pw_pma_pw2">' . $strReType . ':</label></td>' . "\n"
  1357.                . '                    <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw2" id="pw_pma_pw2" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
  1358.                . '                </tr>' . "\n"
  1359.                . '                <tr>' . "\n"
  1360.                . '                    <td colspan="3" align="right">' . "\n"
  1361.                . '                        <input type="submit" name="change_pw" value="' . $strGo . '" />' . "\n"
  1362.                . '                    </td>' . "\n"
  1363.                . '                </tr>' . "\n"
  1364.                . '            </table>' . "\n"
  1365.                . '        </form>' . "\n"
  1366.                . '    </li>' . "\n"
  1367.                . '    <li>' . "\n"
  1368.                . '        <form action="server_privileges.php" method="post" onsubmit="return checkPassword(this);">' . "\n"
  1369.                . PMA_generate_common_hidden_inputs('', '', 3)
  1370.                . '            <input type="hidden" name="old_username" value="' . htmlspecialchars($username) . '" />' . "\n"
  1371.                . '            <input type="hidden" name="old_hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n"
  1372.                . '            <b>' . $strChangeCopyUser . '</b><br />' . "\n"
  1373.                . '            <table border="0" cellpadding="2" cellspacing="1">' . "\n";
  1374.             PMA_displayLoginInformationFields('change', 3);
  1375.             echo '            </table>' . "\n"
  1376.                . '            ' . $strChangeCopyMode . '<br />' . "\n"
  1377.                . '            <input type="radio" name="mode" value="4" id="radio_mode_4" checked="checked" /><label for="radio_mode_4">' . "\n"
  1378.                . '                ' . $strChangeCopyModeCopy . "\n"
  1379.                . '            </label>' . "\n"
  1380.                . '            <br />' . "\n"
  1381.                . '            <input type="radio" name="mode" value="1" id="radio_mode_1" /><label for="radio_mode_1">' . "\n"
  1382.                . '                ' . $strChangeCopyModeJustDelete . "\n"
  1383.                . '            </label>' . "\n"
  1384.                . '            <br />' . "\n"
  1385.                . '            <input type="radio" name="mode" value="2" id="radio_mode_2" /><label for="radio_mode_2">' . "\n"
  1386.                . '                ' . $strChangeCopyModeRevoke . "\n"
  1387.                . '            </label>' . "\n"
  1388.                . '            <br />' . "\n"
  1389.                . '            <input type="radio" name="mode" value="3" id="radio_mode_3" /><label for="radio_mode_3">' . "\n"
  1390.                . '                ' . $strChangeCopyModeDeleteAndReload . "\n"
  1391.                . '            </label>' . "\n"
  1392.                . '            <br />' . "\n"
  1393.                . '            <input type="submit" name="change_copy" value="' . $strGo . '" />' . "\n"
  1394.                . '        </form>' . "\n"
  1395.                . '    </li>' . "\n";
  1396.         }
  1397.         echo '</ul>' . "\n";
  1398.     }
  1399. } else if (!empty($adduser)) {
  1400.     // Add a new user
  1401.     $url_query .= '&adduser=1';
  1402.     echo '<h2>' . "\n"
  1403.        . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_usradd.png" width="16" height="16" border="0" hspace="2" align="middle" />' : '' )
  1404.        . '    ' . $strAddUser . "\n"
  1405.        . '</h2>' . "\n"
  1406.        . '<form name="usersForm" action="server_privileges.php" method="post" onsubmit="return checkAddUser(this);">' . "\n"
  1407.        . PMA_generate_common_hidden_inputs('', '', 1)
  1408.        . '    <table border="0" cellpadding="2" cellspacing="1">' . "\n"
  1409.        . '        <tr>' . "\n"
  1410.        . '            <th colspan="3">' . "\n"
  1411.        . '                ' . $strLoginInformation . "\n"
  1412.        . '            </th>' . "\n"
  1413.        . '        </tr>' . "\n";
  1414.     PMA_displayLoginInformationFields('new', 2);
  1415.     echo '    </table><br />' . "\n";
  1416.     PMA_displayPrivTable('*', '*', FALSE, 1);
  1417.     echo '    <br />' . "\n"
  1418.        . '    <input type="submit" name="adduser_submit" value="' . $strGo . '" />' . "\n"
  1419.        . '</form>' . "\n";
  1420. } else {
  1421.     // check the privileges for a particular database.
  1422.     echo '<h2>' . "\n"
  1423.        . ($cfg['PropertiesIconic'] ? '<img src="' . $pmaThemeImage . 'b_usrcheck.png" width="16" height="16" border="0" hspace="2" align="middle" />' : '' )
  1424.        . '    ' . sprintf($strUsersHavingAccessToDb, htmlspecialchars($checkprivs)) . "\n"
  1425.        . '</h2>' . "\n"
  1426.        . '<table border="0" cellpadding="2" cellspacing="1">' . "\n"
  1427.        . '    <tr>' . "\n"
  1428.        . '        <th>' . "\n"
  1429.        . '             ' . $strUser . ' ' . "\n"
  1430.        . '        </th>' . "\n"
  1431.        . '        <th>' . "\n"
  1432.        . '             ' . $strHost . ' ' . "\n"
  1433.        . '        </th>' . "\n"
  1434.        . '        <th>' . "\n"
  1435.        . '             ' . $strType . ' ' . "\n"
  1436.        . '        </th>' . "\n"
  1437.        . '        <th>' . "\n"
  1438.        . '             ' . $strPrivileges . ' ' . "\n"
  1439.        . '        </th>' . "\n"
  1440.        . '        <th>' . "\n"
  1441.        . '             ' . $strGrantOption . ' ' . "\n"
  1442.        . '        </th>' . "\n"
  1443.        . '        <th>' . "\n"
  1444.        . '             ' . $strAction . ' ' . "\n"
  1445.        . '        </th>' . "\n"
  1446.        . '    </tr>' . "\n";
  1447.     $useBgcolorOne = TRUE;
  1448.     unset($row);
  1449.     unset($row1);
  1450.     unset($row2);
  1451.     // now, we build the table...
  1452.     if (PMA_MYSQL_INT_VERSION >= 40000) {
  1453.         // Starting with MySQL 4.0.0, we may use UNION SELECTs and this makes
  1454.         // the job much easier here!
  1455.  
  1456.         $no = PMA_convert_using('N', 'quoted');
  1457.  
  1458.         $list_of_privileges = PMA_convert_using('Select_priv') . ' AS Select_priv, ' . PMA_convert_using('Insert_priv') . ' AS Insert_priv, ' . PMA_convert_using('Update_priv') . ' AS Update_priv, ' . PMA_convert_using('Delete_priv') . ' AS Delete_priv, ' . PMA_convert_using('Create_priv') . ' AS Create_priv, ' . PMA_convert_using('Drop_priv') . ' AS Drop_priv, ' . PMA_convert_using('Grant_priv') . ' AS Grant_priv, '. PMA_convert_using('References_priv') . ' AS References_priv';
  1459.  
  1460.         $list_of_compared_privileges = PMA_convert_using('Select_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('Insert_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('Update_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('Delete_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('Create_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('Drop_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('Grant_priv') . ' = ' . $no . ' AND ' . PMA_convert_using('References_priv') . ' = ' . $no;
  1461.  
  1462.         $sql_query = '(SELECT ' . PMA_convert_using('User') . ' AS User,' . PMA_convert_using('Host') . ' AS Host,' . PMA_convert_using('Db') . ' AS Db,' . $list_of_privileges . ' FROM `db` WHERE ' . PMA_convert_using($checkprivs, 'quoted') . ' LIKE ' .  PMA_convert_using('Db') . ' AND NOT (' . $list_of_compared_privileges. ')) UNION (SELECT ' . PMA_convert_using('User') . ' AS User, ' . PMA_convert_using('Host') . ' AS Host, ' . PMA_convert_using('*', 'quoted') . ' AS Db, ' . $list_of_privileges . ' FROM `user` WHERE NOT (' . $list_of_compared_privileges . ')) ORDER BY User ASC, Host ASC, Db ASC;';
  1463.         $res = PMA_DBI_query($sql_query);
  1464.  
  1465.         $row = PMA_DBI_fetch_assoc($res);
  1466.         if ($row) {
  1467.             $found = TRUE;
  1468.         }
  1469.     } else {
  1470.         // With MySQL 3, we need 2 seperate queries here.
  1471.         $sql_query = 'SELECT * FROM `user` WHERE NOT (`Select_priv` = \'N\' AND `Insert_priv` = \'N\' AND `Update_priv` = \'N\' AND `Delete_priv` = \'N\' AND `Create_priv` = \'N\' AND `Drop_priv` = \'N\' AND `Grant_priv` = \'N\' AND `References_priv` = \'N\') ORDER BY `User` ASC, `Host` ASC;';
  1472.         $res1 = PMA_DBI_query($sql_query);
  1473.         $row1 = PMA_DBI_fetch_assoc($res1);
  1474.         $sql_query = 'SELECT * FROM `db` WHERE \'' . $checkprivs . '\' LIKE `Db` AND NOT (`Select_priv` = \'N\' AND `Insert_priv` = \'N\' AND `Update_priv` = \'N\' AND `Delete_priv` = \'N\' AND `Create_priv` = \'N\' AND `Drop_priv` = \'N\' AND `Grant_priv` = \'N\' AND `References_priv` = \'N\') ORDER BY `User` ASC, `Host` ASC;';
  1475.         $res2 = PMA_DBI_query($sql_query);
  1476.         $row2 = PMA_DBI_fetch_assoc($res2);
  1477.         if ($row1 || $row2) {
  1478.             $found = TRUE;
  1479.         }
  1480.     } // end if (PMA_MYSQL_INT_VERSION >= 40000) ... else ...
  1481.     if ($found) {
  1482.         while (TRUE) {
  1483.             // prepare the current user
  1484.             if (PMA_MYSQL_INT_VERSION >= 40000) {
  1485.                 $current_privileges = array();
  1486.                 $current_user = $row['User'];
  1487.                 $current_host = $row['Host'];
  1488.                 while ($row && $current_user == $row['User'] && $current_host == $row['Host']) {
  1489.                     $current_privileges[] = $row;
  1490.                     $row = PMA_DBI_fetch_assoc($res);
  1491.                 }
  1492.             } else {
  1493.                 $current_privileges = array();
  1494.                 if ($row1 && (!$row2 || ($row1['User'] < $row2['User'] || ($row1['User'] == $row2['User'] && $row1['Host'] <= $row2['Host'])))) {
  1495.                     $current_user = $row1['User'];
  1496.                     $current_host = $row1['Host'];
  1497.                     $current_privileges = array($row1);
  1498.                     $row1 = PMA_DBI_fetch_assoc($res1);
  1499.                 } else {
  1500.                     $current_user = $row2['User'];
  1501.                     $current_host = $row2['Host'];
  1502.                     $current_privileges = array();
  1503.                 }
  1504.                 while ($row2 && $current_user == $row2['User'] && $current_host == $row2['Host']) {
  1505.                     $current_privileges[] = $row2;
  1506.                     $row2 = PMA_DBI_fetch_assoc($res2);
  1507.                 }
  1508.             }
  1509.             echo '    <tr>' . "\n"
  1510.                . '        <td';
  1511.             if (count($current_privileges) > 1) {
  1512.                 echo ' rowspan="' . count($current_privileges) . '"';
  1513.             }
  1514.             echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
  1515.                . '            ' . (empty($current_user) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($current_user)) . "\n"
  1516.                . '        </td>' . "\n"
  1517.                . '        <td';
  1518.             if (count($current_privileges) > 1) {
  1519.                 echo ' rowspan="' . count($current_privileges) . '"';
  1520.             }
  1521.             echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
  1522.                . '            ' . htmlspecialchars($current_host) . "\n"
  1523.                . '        </td>' . "\n";
  1524.             foreach ($current_privileges as $current) {
  1525.                 echo '        <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
  1526.                    . '            ';
  1527.                 if (!isset($current['Db']) || $current['Db'] == '*') {
  1528.                     echo $strGlobal;
  1529.                 } else if ($current['Db'] == $checkprivs) {
  1530.                     echo $strDbSpecific;
  1531.                 } else {
  1532.                     echo $strWildcard, ': <tt>' . htmlspecialchars($current['Db']) . '</tt>';
  1533.                 }
  1534.                 echo "\n"
  1535.                    . '        </td>' . "\n"
  1536.                    . '        <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
  1537.                    . '            <tt>' . "\n"
  1538.                    . '                ' . join(',' . "\n" . '                ', PMA_extractPrivInfo($current, TRUE)) . "\n"
  1539.                    . '            <tt>' . "\n"
  1540.                    . '        </td>' . "\n"
  1541.                    . '        <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
  1542.                    . '            ' . ($current['Grant_priv'] == 'Y' ? $strYes : $strNo) . "\n"
  1543.                    . '        </td>' . "\n"
  1544.                    . '        <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
  1545.                    . '            <a href="./server_privileges.php?' . $url_query . '&username=' . urlencode($current_user) . '&hostname=' . urlencode($current_host) . (!isset($current['Db']) || $current['Db'] == '*' ? '' : '&dbname=' . urlencode($current['Db'])) . '">' . "\n"
  1546.                    . '                ' . $strEdit . "\n"
  1547.                    . '            </a>' . "\n"
  1548.                    . '        </td>' . "\n"
  1549.                    . '    </tr>' . "\n";
  1550.             }
  1551.             if (empty($row) && empty($row1) && empty($row2)) {
  1552.                 break;
  1553.             }
  1554.             $useBgcolorOne = !$useBgcolorOne;
  1555.         }
  1556.     } else {
  1557.         echo '    <tr>' . "\n"
  1558.            . '        <td colspan="6" bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
  1559.            . '            ' . $strNoUsersFound . "\n"
  1560.            . '        </td>' . "\n"
  1561.            . '    </tr>' . "\n";
  1562.     }
  1563.     echo '</table>' . "\n";
  1564. } // end if (empty($adduser) && empty($checkprivs)) ... else if ... else ...
  1565.  
  1566.  
  1567. /**
  1568.  * Displays the footer
  1569.  */
  1570. echo "\n\n";
  1571. require_once('./footer.inc.php');
  1572.  
  1573. ?>
  1574.